Linux webm002.cluster126.gra.hosting.ovh.net 5.15.206-ovh-vps-grsec-zfs-classid #1 SMP Fri May 15 02:41:25 UTC 2026 x86_64
/
home
/
ariannadhf
/
www
/
wp-content
/
plugins
/
ocean-extra
/
includes
/
menu-icons
/
includes
/
library
/
/home/ariannadhf/www/wp-content/plugins/ocean-extra/includes/menu-icons/includes/library/compat.php
<?php /** * Misc. functions for backward-compatibility. */ if ( ! function_exists( 'wp_get_attachment_image_url' ) ) { /** * Get the URL of an image attachment. * */ function wp_get_attachment_image_url( $attachment_id, $size = 'thumbnail', $icon = false ) { $image = wp_get_attachment_image_src( $attachment_id, $size, $icon ); return isset( $image['0'] ) ? $image['0'] : false; } }